home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / newmarch.zip / MAKEFILE < prev    next >
Text File  |  1992-09-08  |  441b  |  23 lines

  1. # Makefile for the programs inthis directory
  2. #
  3. # To create program "fred" from source "fred.c" type
  4. #    make fred
  5. #
  6.  
  7. # uncomment the next line for compiling Xlib programs:
  8. LIB =  -lX11
  9.  
  10. # uncomment the next line for compiling Motif programs:
  11. # LIB =  -lXm -lXt -lX11
  12.  
  13. INCLUDE = 
  14.  
  15. # for debugging:
  16. CFLAGS = -g
  17.  
  18. # These programs do not have prototype definitions
  19. DEFINES = -D_NO_PROTO
  20.  
  21. .c:
  22.     $(CC) $(CFLAGS) $(DEFINES) $< -o $@ $(INCLUDE) $(LIB)
  23.